Merged
Conversation
mthalman
approved these changes
Jul 11, 2025
lbussell
added a commit
to lbussell/dotnet-docker
that referenced
this pull request
Jul 14, 2025
andrewlock
added a commit
to DataDog/dd-trace-dotnet
that referenced
this pull request
Jul 18, 2025
## Summary of changes - Adds (and removes) some more smoke tests - Fixes an issue with recent glibc version (in `debian:trixie`) that causes native tracer to fail to load ## Reason for change Initial .NET 10 tests show that `debian:trixie` causes the .NET tracer to fail to load with: ``` /opt/datadog/./linux-x64/Datadog.Tracer.Native.so: cannot enable executable stack as shared object requires: Invalid argument ``` This is due to the fact that debian 13 uses glibc 2.41 which stopped automatically enabling executable stacks when loading shared libraries. This PR addresses the root cause, and adds smoke tests to demonstrate that. ## Implementation details - Added smoke tests for `debian:trixie` - Removed some smoke tests for older runtime/distro coverage - ensures we still cover all the TFMs and distros, but removes some redundancy - Fixes the glibc issue (TBC) ## Test coverage Adds some more smoke tests ## Other details We discovered this in the .NET 10 upgrade PR, but Microsoft have [since _stopped_ publishing](dotnet/dotnet-docker#6541) `debian` images 😅 So I recreated the images and .NET 8/ .NET 9 versions so we can test it right now. --------- Co-authored-by: Tony Redondo <tony.redondo@datadoghq.com>
2 tasks
JoshKeegan
added a commit
to JoshKeegan/dotnet-build
that referenced
this pull request
Nov 14, 2025
With the dotnet 10 release, Microsoft has removed Debian based docker images. See dotnet/dotnet-docker#6541 So, the base used in this repo is being switched to Ubuntu, which is the closest alternative without rolling our own image.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related: